From bf3a801245a0be1d9001ee106e48cbf8b4bc73df Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 3 Dec 2025 18:39:08 +0900 Subject: (임수민) 페이지 타이틀과 메뉴명 일치 작업 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/evcp/(evcp)/(system)/menu-access/page.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'app/[lng]/evcp/(evcp)/(system)/menu-access/page.tsx') diff --git a/app/[lng]/evcp/(evcp)/(system)/menu-access/page.tsx b/app/[lng]/evcp/(evcp)/(system)/menu-access/page.tsx index 7f5228df..4fa712f1 100644 --- a/app/[lng]/evcp/(evcp)/(system)/menu-access/page.tsx +++ b/app/[lng]/evcp/(evcp)/(system)/menu-access/page.tsx @@ -8,11 +8,15 @@ import { searchParamsUsersCache } from "@/lib/admin-users/validations" import { getUsersNotPartners } from "@/lib/users/service"; import { UserAccessControlTable } from "@/lib/users/access-control/users-table"; import { InformationButton } from "@/components/information/information-button"; +import { useTranslation } from "@/i18n"; interface IndexPageProps { + params: Promise<{ lng: string }> searchParams: Promise; } export default async function IndexPage(props: IndexPageProps) { + const { lng } = await props.params + const { t } = await useTranslation(lng, 'menu') const searchParams = await props.searchParams; const search = searchParamsUsersCache.parse(searchParams); const validFilters = getValidFilters(search.filters); @@ -29,7 +33,9 @@ export default async function IndexPage(props: IndexPageProps) {
-

메뉴 접근제어 관리

+

+ {t('menu.information_system.menu_access')} +

{/*

@@ -53,4 +59,4 @@ export default async function IndexPage(props: IndexPageProps) { ); -} \ No newline at end of file +} -- cgit v1.2.3